home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 301-325 / disk_315 / surf / readilbm.h < prev    next >
C/C++ Source or Header  |  1992-05-06  |  749b  |  36 lines

  1. #ifndef READILBM_H_FILE
  2.  
  3. #define READILBM_H_FILE
  4.  
  5. #ifndef MYTYPES_H_FILE
  6. #include "mytypes.h"
  7. #endif MYTYPES_H_FILE
  8.  
  9. #define DefRepV 1
  10. #define DefRepH 1
  11.  
  12. /*
  13.  * how many times the image should be replicated on screen
  14.  */
  15. extern short MapRepV, MapRepH;
  16.  
  17. /*
  18.  * Size of image read in
  19.  */
  20. extern int MapImageV, MapImageH;
  21. /*
  22.  * ReadPixel returns an intensity between 0-255
  23.  */
  24. extern short GetImgPix(/* short vert, hori */);
  25. extern void CloseImgPix();
  26. bool OpenImgPix( /* int sizex, sizey; short maxshade */);
  27. void SetImgPix( /* int x, y; short val */ );
  28. short GetImgPix( /* int x, y */);
  29. extern void PrepImgPix(/* void */);
  30. #define DefXYFlip false
  31. extern void FlipImgPix( /* bool flip */);
  32. extern void SetGreyModel( /* int */);
  33.  
  34. #endif READILBM_H_FILE
  35.  
  36.